#include #include #include void czekaj(int czas) { int t = clock(); t += czas; while( clock() < t ){} } int a, b, c; int main() { printf("Podaj bok a"); scanf("%d", &a); printf("Podaj bok b"); scanf("%d", &b); printf("Podaj bok c"); scanf("%d", &c); if(a==b) { if(b==c) { printf("Trojkat jest rownboczny"); czekaj(2000); } } return 0; }